home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 21 / AMIGAplus Sonderheft 21 (1999)(ICP)(DE)[!].iso / PublicDomain / Anwendungen / h8jpg / h8jpg.readme < prev    next >
Text File  |  1999-08-23  |  2KB  |  84 lines

  1. Short:  High-Quality-HAM8 JPEG image viewer
  2. Author: Smack/Infect! (Michael Henke)
  3. Type:   gfx/show
  4.  
  5.  
  6.  #features
  7.    -high-quality display for AGA machines (18bit-RGB)
  8.    -lean code, external JPEG handling routines (jpeg.library)
  9.    -full source code included
  10.  
  11.  
  12.  #requirements
  13.    -AGA chipset
  14.    -CPU 68020+
  15.    -AmigaOS V39+
  16.    -jpeg.library V5+ (Aminet:util/libs/jpeglibrary50.lha)
  17.  
  18.    -tested on: A1200 (68030+882 @ 40MHz, 16MB Fast)
  19.  
  20.  
  21.  #recommended
  22.    -reqtools.library V38+
  23.    -FastRAM
  24.    -some JPEG images :)
  25.  
  26.  
  27. ;
  28. ;
  29. ;---------------------------------
  30. ;
  31. ; h8jpg
  32. ; code by Smack/Infect!
  33. ; Tue 18-May-99
  34. ;
  35. ;---------------------------------
  36. ;
  37. ;
  38.  
  39.  
  40.  #introduction
  41.    Yes, this is yet another image viewer.
  42.    No, it was not written to compete with or even to replace your
  43.    favourite image viewer (I'm frequently using Visage). It's simply
  44.    a little tool that I wanted to have, so I sat down and coded it.
  45.  
  46.  
  47.  #how to use it
  48.    h8jpg is a shell-only program. The argument template is:
  49.    FILES/M          one or more filenames
  50.                     (if omitted a reqtools file requester appears)
  51.    FITSCREEN/S      scale images down so that they fit the screen
  52.                     (they can be up to 50% wider and/or higher)
  53.  
  54.    While displaying images h8jpg recognizes these inputs:
  55.    Space/LMB        next image
  56.    Esc/RMB          exit
  57.  
  58.  
  59.  #technical stuff
  60.    This is where we get to the drawbacks of the HAM8-RGBB technique:
  61.  
  62.    -enormous chip memory consumption
  63.     (h8jpg first tries to display the images in their original sizes,
  64.     if there should be not enough chip memory available then they
  65.     will be scaled down)
  66.  
  67.    -low screen resolution
  68.     (h8jpg uses screen mode $8820, that is "Super-High Res HAM" of the
  69.     system default monitor driver - PAL or NTSC. the images will look
  70.     like "Low Res" because each image pixel is made of 4 screen pixels)
  71.  
  72.  
  73.  #author
  74.    email: smack@smack.de
  75.  
  76.    h8jpg is Copyright (c) 1999 by Michael Henke.
  77.    It is released as FREEWARE, which means it may be distributed and used
  78.    for free, but no profit may be made with it (neither by selling the
  79.    program nor by using it for commercial purposes). The program and the
  80.    information within this text are provided 'AS-IS'. The entire risk as
  81.    to its quality and performance is with the user. In no event will the
  82.    author be liable for direct, indirect, incidental or consequential
  83.    damages resulting from any defect in the program.
  84.